Micron Document
🌎 rns.kin.earth git 🌍

Node / dev / reticulum / commits / af7697f

Commit af7697f223bfe520e627bcd5183274700a4ed70e


Parents : 0bcb4b8
Author : Mark Qvist <mark@unsigned.io>
Date : 2025-10-28T12:31:30+01:00

Fixed string formatting for Android

Changes

1 files changed, 1 insertions(+), 1 deletions(-)


Diff

diff --git a/RNS/Interfaces/WeaveInterface.py b/RNS/Interfaces/WeaveInterface.py
index 37511e72..398a8df7 100644
--- a/RNS/Interfaces/WeaveInterface.py
+++ b/RNS/Interfaces/WeaveInterface.py
@@ -637,7 +637,7 @@ class WeaveDevice():
else:
ts = RNS.prettytime(frame.timestamp)
if frame.event == Evt.ET_MSG:
- if len(frame.data): data_string = f"{frame.data.decode("utf-8")}"
+ if len(frame.data): data_string = frame.data.decode("utf-8")
else: data_string = ""
rendered = f"[{ts}] [{Evt.level(frame.level)}]: {data_string}"

Served by rngit 1.5.2 - Generated in 0.04s